.product-tile-cta a {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-green-light);
}

.common-cta a {
  text-decoration: none;
}

.common-cta a:hover {
  text-decoration: none;
  border-bottom: solid 2px;
}

.cta-common-link:hover {
  border-bottom: solid 2px var(--color-petrol);
}

main a.common-btn-cta {
  border: 2px solid #809ea3;
  padding: 1%;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--color-petrol);
}

.common-btn-cta:hover {
  cursor: pointer;
  border: 2px solid #1a5059;
  text-decoration: none;
  border-radius: 4px;
}

a:link.cta-button-arrow {
  padding: 0 1.4rem 0.3rem 0;
  border-bottom: solid 2px transparent;
}

a.cta-button-arrow::after {
  content: "\e8e4";
  font-family: "Material Symbols Outlined";
  font-size: 1.4em;
  position: relative;
  top: 0.33rem;
  left: 0.5em;
  transition: all 0.2s ease-in-out;
  line-height: 0;
}

a.cta-button-arrow:hover {
  color: var(--color-petrol);
  border-bottom: solid 2px var(--color-petrol);
}
a.cta-button-arrow:hover::after {
  transition: all 0.2s ease-in-out;
  left: 1em;
}

a.cta-button-arrow.xlarge {
  border-bottom-width: 4px;
}

a.cta-button-arrow.small {
  font-size: 0.875em;
}
a.cta-button-arrow.xsmall {
  font-size: 0.75em;
}
a.cta-button-arrow.xlarge {
  font-size: 3.5em;
  padding-right: 1.4em;
}
a.cta-button-arrow.xlarge::after {
  top: 0.25em;
}


       /*** CTA Buttons ***/
       .button-large,
       main a.button-large {
           cursor: pointer;
           display: block;
           font-size: 0.875em;
           color: var(--color-petrol);
           border: 2px solid var(--color-petrol-30);
           border-radius: 4px;
           padding: 1em 2em;
           margin: 1em 0;
           display: inline-block;
			text-decoration: none;
       }

       .button-large:hover {
           border: 2px solid var(--color-petrol);
       }

       .button-large.disabled {
           cursor:not-allowed;
           color: var(--color-petrol-30b);
           border-color: var(--color-petrol-30b);
       }

       .button-large span.material-symbols-outlined {
           line-height: 0;
           top: 6px;
           position: relative;
       }

       .button-large::after {
           content: "\e8e4";
           font-family: "Material Symbols Outlined";
           font-size: 1.4em;
           position: relative;
           top: 0.33rem;
           left: 0.5em;
           transition: all .2s ease-in-out;
           line-height: 0;
       }

       .button-large:hover::after {
           left: 0.8em;
           transition: all .2s ease-in-out;
       }

       .button-large.disabled:hover::after {
           left: 0.5em;
       }
